home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-17 | 1.5 KB | 59 lines | [TEXT/MPS ] |
- ;
- ; File: OSAComp.a
- ;
- ; Contains: AppleScript Component Implementor's Interfaces.
- ;
- ; Version: Technology: AppleScript 1.1
- ; Release: Universal Interfaces 3.2
- ;
- ; Copyright: © 1992-1995, 1997-1998 by Apple Computer, Inc., all rights reserved
- ;
- ; Bugs?: For bug reports, consult the following page on
- ; the World Wide Web:
- ;
- ; http://developer.apple.com/bugreporter/
- ;
- ;
- IF &TYPE('__OSACOMP__') = 'UNDEFINED' THEN
- __OSACOMP__ SET 1
-
- IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
- include 'MacTypes.a'
- ENDIF
- IF &TYPE('__AEDATAMODEL__') = 'UNDEFINED' THEN
- include 'AEDataModel.a'
- ENDIF
-
- ; **************************************************************************
- ; Types and Constants
- ;*************************************************************************
-
- ; **************************************************************************
- ; Routines for Associating a Storage Type with a Script Data Handle
- ;*************************************************************************
-
- ;
- ; pascal OSErr OSAGetStorageType(Handle scriptData, DescType *dscType)
- ;
- IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION OSAGetStorageType
- ENDIF
-
- ;
- ; pascal OSErr OSAAddStorageType(Handle scriptData, DescType dscType)
- ;
- IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION OSAAddStorageType
- ENDIF
-
- ;
- ; pascal OSErr OSARemoveStorageType(Handle scriptData)
- ;
- IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION OSARemoveStorageType
- ENDIF
-
-
- ENDIF ; __OSACOMP__
-
-